home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-01 | 701 b | 31 lines | [TEXT/????] |
- // This sample script shows how to log onto a FirstClass
- // server over the SprintNet X.25 service. It is assumed
- // that FirstClass has already dialed the SprintNet Number.
- //
- DELAY 120
- SEND "@"
- DELAY 20
- SEND "D"
- DELAY 20
- SEND "\r"
- //
- // now that it sees us we get it set up
- //
- WAITFOR "TERMINAL=" -t3600
- DELAY 20
- SEND "D1\r"
- WAITFOR "@" -t300
- //
- // make sure to type in your correct SprintNet account name
- // and password in the spaces below
- //
- SEND "C your address here,xxx\r"
- WAITFOR "PASSWORD" -t300
- SEND "your password here\r"
- WAITFOR "CONNECT" -t3600
- //
- // SprintNet has connected us to our system
- // when we fall off the end of a script like this,
- // the normal FirstClass login starts up
-
-